Skip to content

[codex] Link footer support contact#744

Merged
justin808 merged 1 commit into
mainfrom
fix-footer-support-link
Jun 1, 2026
Merged

[codex] Link footer support contact#744
justin808 merged 1 commit into
mainfrom
fix-footer-support-link

Conversation

@justin808

@justin808 justin808 commented Jun 1, 2026

Copy link
Copy Markdown
Member

Summary

  • make the footer HiChee Support item a functional mailto link

Verification


Note

Low Risk
Single footer config change with no auth, data, or routing impact; mailto opens in the same tab by existing link logic.

Overview
The Hosting footer entry HiChee Support now includes href: mailto:support@hichee.com, so it renders as a clickable anchor instead of plain text (previously the item had only a label and fell through to a <span>).

Reviewed by Cursor Bugbot for commit 7a49e29. Bugbot is set up for automated code reviews on this repo. Configure here.

@coderabbitai

coderabbitai Bot commented Jun 1, 2026

Copy link
Copy Markdown

Warning

Review limit reached

@justin808, we couldn't start this review because you've reached your PR review rate limit.

More reviews will be available in 34 minutes and 49 seconds. Learn how PR review limits work.

Your organization has run out of usage credits. Purchase more in the billing tab.

⌛ How to resolve this issue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available.

Please see our Fair Usage Limits Policy for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 5b3eae1d-5fef-4438-a3ff-a0de24346ea1

📥 Commits

Reviewing files that changed from the base of the PR and between 727e894 and 7a49e29.

📒 Files selected for processing (1)
  • src/layouts/BaseLayout.astro
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix-footer-support-link

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@cloudflare-workers-and-pages

Copy link
Copy Markdown

Deploying blog-hichee-com with  Cloudflare Pages  Cloudflare Pages

Latest commit: 7a49e29
Status: ✅  Deploy successful!
Preview URL: https://2fa57480.blog-hichee-com-git.pages.dev
Branch Preview URL: https://fix-footer-support-link.blog-hichee-com-git.pages.dev

View logs

@justin808 justin808 merged commit 592da57 into main Jun 1, 2026
5 checks passed
@justin808 justin808 deleted the fix-footer-support-link branch June 1, 2026 07:51
@greptile-apps

greptile-apps Bot commented Jun 1, 2026

Copy link
Copy Markdown

Greptile Summary

This PR makes the "HiChee Support" footer link functional by adding href: 'mailto:support@hichee.com' to what was previously an unlinked <span>. The change is a single-line data update in the footerSections array; the existing template logic already handles the href-present vs. absent branching correctly.

  • The mailto: link correctly bypasses the startsWith('http') guard, so no target="_blank" or rel="noreferrer" is added — the right behavior for an email link.
  • No other footer sections or nav links are affected.

Confidence Score: 5/5

Minimal, targeted change that only adds a mailto href to an existing footer item with no side effects.

The change is a single data property addition in a footer configuration array. The template already handles mailto: links correctly — they render as anchors without target=_blank or rel=noreferrer, which is the desired behavior. Nothing else in the layout is touched.

No files require special attention.

Important Files Changed

Filename Overview
src/layouts/BaseLayout.astro Adds href: 'mailto:support@hichee.com' to the previously non-linked "HiChee Support" footer entry, converting it from a <span> to a functional <a> tag.

Flowchart

%%{init: {'theme': 'neutral'}}%%
flowchart TD
    A[footerSections data] --> B{link.href defined?}
    B -- Yes --> C["<a href={link.href}>"]
    B -- No --> D["<span>{link.label}</span>"]
    C --> E{href starts with 'http'?}
    E -- Yes --> F["target='_blank' + rel='noreferrer'"]
    E -- No --> G["No target / rel (mailto: or relative)"]
    F --> H[Rendered anchor]
    G --> H
    D --> I[Rendered plain text]
Loading

Reviews (1): Last reviewed commit: "Link footer support contact" | Re-trigger Greptile

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant